+Thu Jul 27 05:06:29 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtktable.c: applied patch from Phil Thompson
+ <phil@river-bank.demon.co.uk> that enables space settings for
+ the last row/columns as well.
+
Wed Jul 26 12:59:31 2000 Tim Janik <timj@gtk.org>
* *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
+Thu Jul 27 05:06:29 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtktable.c: applied patch from Phil Thompson
+ <phil@river-bank.demon.co.uk> that enables space settings for
+ the last row/columns as well.
+
Wed Jul 26 12:59:31 2000 Tim Janik <timj@gtk.org>
* *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
+Thu Jul 27 05:06:29 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtktable.c: applied patch from Phil Thompson
+ <phil@river-bank.demon.co.uk> that enables space settings for
+ the last row/columns as well.
+
Wed Jul 26 12:59:31 2000 Tim Janik <timj@gtk.org>
* *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
+Thu Jul 27 05:06:29 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtktable.c: applied patch from Phil Thompson
+ <phil@river-bank.demon.co.uk> that enables space settings for
+ the last row/columns as well.
+
Wed Jul 26 12:59:31 2000 Tim Janik <timj@gtk.org>
* *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
+Thu Jul 27 05:06:29 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtktable.c: applied patch from Phil Thompson
+ <phil@river-bank.demon.co.uk> that enables space settings for
+ the last row/columns as well.
+
Wed Jul 26 12:59:31 2000 Tim Janik <timj@gtk.org>
* *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
+Thu Jul 27 05:06:29 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtktable.c: applied patch from Phil Thompson
+ <phil@river-bank.demon.co.uk> that enables space settings for
+ the last row/columns as well.
+
Wed Jul 26 12:59:31 2000 Tim Janik <timj@gtk.org>
* *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
+Thu Jul 27 05:06:29 2000 Tim Janik <timj@gtk.org>
+
+ * gtk/gtktable.c: applied patch from Phil Thompson
+ <phil@river-bank.demon.co.uk> that enables space settings for
+ the last row/columns as well.
+
Wed Jul 26 12:59:31 2000 Tim Janik <timj@gtk.org>
* *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
{
g_return_if_fail (table != NULL);
g_return_if_fail (GTK_IS_TABLE (table));
- g_return_if_fail (row + 1 < table->nrows);
+ g_return_if_fail (row < table->nrows);
if (table->rows[row].spacing != spacing)
{
{
g_return_if_fail (table != NULL);
g_return_if_fail (GTK_IS_TABLE (table));
- g_return_if_fail (column + 1 < table->ncols);
+ g_return_if_fail (column < table->ncols);
if (table->cols[column].spacing != spacing)
{
g_return_if_fail (GTK_IS_TABLE (table));
table->row_spacing = spacing;
- for (row = 0; row + 1 < table->nrows; row++)
+ for (row = 0; row < table->nrows; row++)
table->rows[row].spacing = spacing;
if (GTK_WIDGET_VISIBLE (table))
g_return_if_fail (GTK_IS_TABLE (table));
table->column_spacing = spacing;
- for (col = 0; col + 1 < table->ncols; col++)
+ for (col = 0; col < table->ncols; col++)
table->cols[col].spacing = spacing;
if (GTK_WIDGET_VISIBLE (table))